导航菜单
首页 >  pyecharts图形在jupyter notebook中不显示的解决办法  > pyecharts 在 jupyter notebook 中不显示图片的解决方案

pyecharts 在 jupyter notebook 中不显示图片的解决方案

1、资源引用

pyecharts 使用的所有静态资源文件存放于 pyecharts-assets 项目中,默认挂载在 https://assets.pyecharts.org/assets/当需要用到相关资源文件时,默认优先从远程引用资源。这样当无法加载到相关的资源js文件时,图表就无法显示。

2、解决办法1)Localhost-Server

pyecharts 提供了更改全局 HOST 的快捷方式,下面以开发者启动本地 FILE SERVER 为例,操作如下。

1、获取 pyecharts-assets 项目

$ git clone https://github.com/pyecharts/pyecharts-assets.git

2、启动 HTTP file server

$ cd pyecharts-assets $ python -m http.server # Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ... # 默认会在本地 8000 端口启动一个文件服务器

3、配置 pyecharts 全局 HOST

# 只需要在顶部

相关推荐: